Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/42 - Simple Form Validation/

app.js /cody/swapnilsparsh/30DaysOfJavaScript/42 - Simple Form Validation/app.js
160 Views
0 Comments
const isBlank = function (value) {
return (value.trim() === "" ? true : false)
}
const isBetween = function (length, min = 5,
assets /cody/swapnilsparsh/30DaysOfJavaScript/42 - Simple Form Validation/assets/
1 Items
  • favicon.png
  • index.html /cody/swapnilsparsh/30DaysOfJavaScript/42 - Simple Form Validation/index.html
    442 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <met
    styles.css /cody/swapnilsparsh/30DaysOfJavaScript/42 - Simple Form Validation/styles.css
    165 Views
    0 Comments
    @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

    :root {
    --error-color: #dc3545;
    --success-co